1 2 3 4 5 6 7 8 9 10 11
import styles from "./loading.module.css"; export default function Loading() { return ( <div className={styles.loadingContainer}> <p className={styles.loadingText}> Please wait while we load all the data for you. </p> </div> ); }